home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000068_fdc@columbia.edu_Tue Mar 15 09:12:19 2005.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: using G-Kermit as an external protocol
  5. Date: 15 Mar 2005 13:16:31 GMT
  6. Organization: Columbia University
  7. Lines: 21
  8. Message-ID: <slrnd3do1f.42.fdc@sesame.cc.columbia.edu>
  9. References: <FLnZd.10209$C47.2649@newssvr14.news.prodigy.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1110892591 6137 128.59.59.56 (15 Mar 2005 13:16:31 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 15 Mar 2005 13:16:31 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15304
  17.  
  18. On 2005-03-14, Vassili Syskine <vsyskine@bestg.com> wrote:
  19. : I need to use G-Kermit as an external protocol.
  20. :
  21. : Do I understand correctly that, while transferring
  22. : file, I pass each byte received via pipe to the
  23. : G-Kermit process and send back whatever G-Kermit
  24. : process writes back?
  25. :
  26. No, G-Kermit does not have the ability to send files from
  27. or to a pipe or stdin/out.  When using G-Kermit as an
  28. external protocol (by including the -X command-line option),
  29. files are referenced in the normal way in the file system.
  30. The only difference is that in this case G-Kermit does not
  31. attempt to alter the terminal modes.
  32.  
  33. If you need to pipe stdin or stdout through the Kermit protocol,
  34. you can use C-Kermit for that:
  35.  
  36.   http://www.columbia.edu/kermit/ckermit.html
  37.  
  38. - Frank